home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-12-30 | 1.3 KB | 37 lines |
- #
- # This is the make file for the prsr. lib subdirectory (OS2, gcc 2.1, gnumake).
- #
- # Gershon Elber, Aug 1991
- #
-
- include ..\makeflag.os2
-
- OBJS = allocate.o iritprsr.o iritprsb.o attribut.o ip_cnvrt.o \
- ip_fatal.o ip_procs.o soc_srvr.o soc_clnt.o
-
- libprsr.a: $(OBJS)
- -$(RM) libprsr.a
- ar rc libprsr.a $(OBJS)
-
- install: libprsr.a
- $(CP) libprsr.a $(LIB_DIR)
- ar s $(LIB_DIR)/libprsr.a
- $(CP) *.h $(INC_DIR)
-
- soc_srvr.exe: soc_srvr.c
- $(CC) $(CFLAGS) -DDEBUG_SERVER -DOS2GCC -I. -I$(INC_DIR) -c soc_srvr.c
- $(CC) $(CFLAGS) -o soc_srvr.exe soc_srvr.o $(LIBS) $(MORELIBS) -lm
- rm soc_srvr.o
-
- # Dependencies starts here - do not touch, generated automatically.
- allocate.o: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
- ami_clnt.o: irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
- ami_srvr.o: irit_soc.h iritprsr.h allocate.h iritprsr.h amiga.h
- attribut.o: iritprsr.h attribut.h iritprsr.h allocate.h iritprsr.h
- ip_cnvrt.o: iritprsr.h allocate.h iritprsr.h ip_cnvrt.h iritprsr.h attribut.h iritprsr.h
- ip_fatal.o: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h
- ip_procs.o: attribut.h iritprsr.h iritprsr.h
- iritprsr.o: iritprsr.h allocate.h iritprsr.h attribut.h iritprsr.h irit_soc.h iritprsr.h allocate.h iritprsr.h
- soc_clnt.o: irit_soc.h iritprsr.h allocate.h iritprsr.h
- soc_srvr.o: irit_soc.h iritprsr.h allocate.h iritprsr.h
-